home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 19 / Mac Magazin and MacEasy Magazine CD - Issue 19.iso / Utilities / uae-0.4 / Source Code / include / amiga.h next >
Text File  |  1996-02-05  |  405b  |  28 lines

  1.  /* 
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * global definitions
  5.   * 
  6.   * (c) 1995 Bernd Schmidt
  7.   */
  8.  
  9. typedef unsigned char UBYTE;
  10. typedef signed char BYTE;
  11.  
  12. typedef unsigned short UWORD;
  13. typedef short WORD;
  14.  
  15. #ifdef __alpha
  16. typedef unsigned int ULONG;
  17. typedef int LONG;
  18. #else
  19. typedef unsigned long ULONG;
  20. typedef long LONG;
  21. #endif
  22. typedef ULONG CPTR;
  23.  
  24. typedef char bool;
  25.  
  26. #define true 1
  27. #define false 0
  28.